From 9d8682b9ac981dcdd5a99c218be5821c0eb337d6 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 17 Dec 2010 14:46:18 -0500 Subject: [PATCH] Fix a few parameter name mismatches --- gtk/gtkwidget.c | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/gtk/gtkwidget.c b/gtk/gtkwidget.c index 31672e01ff..b27cd38b8e 100644 --- a/gtk/gtkwidget.c +++ b/gtk/gtkwidget.c @@ -8052,12 +8052,12 @@ gtk_widget_override_symbolic_color (GtkWidget *widget, /** * gtk_widget_override_cursor: * @widget: a #GtkWidget - * @primary: the color to use for primary cursor (does not need to be - * allocated), or %NULL to undo the effect of previous calls to - * of gtk_widget_override_cursor(). - * @secondary: the color to use for secondary cursor (does not need to be - * allocated), or %NULL to undo the effect of previous calls to - * of gtk_widget_override_cursor(). + * @cursor: the color to use for primary cursor (does not need to be + * allocated), or %NULL to undo the effect of previous calls to + * of gtk_widget_override_cursor(). + * @secondary_cursor: the color to use for secondary cursor (does not + * need to be allocated), or %NULL to undo the effect of previous + * calls to of gtk_widget_override_cursor(). * * Sets the cursor color to use in a widget, overriding the * #GtkWidget:cursor-color and #GtkWidget:secondary-cursor-color @@ -8068,7 +8068,7 @@ gtk_widget_override_symbolic_color (GtkWidget *widget, * so the alpha value in @primary and @secondary will be ignored. * * Since: 3.0 - **/ + */ void gtk_widget_override_cursor (GtkWidget *widget, const GdkRGBA *cursor, @@ -11975,8 +11975,6 @@ gtk_widget_get_hexpand_set (GtkWidget *widget) * * There are few reasons to use this function, but it's here * for completeness and consistency. - * - * Return value: whether hexpand has been explicitly set */ void gtk_widget_set_hexpand_set (GtkWidget *widget, @@ -12054,8 +12052,6 @@ gtk_widget_get_vexpand_set (GtkWidget *widget) * be used. * * See gtk_widget_set_hexpand_set() for more detail. - * - * Return value: whether vexpand has been explicitly set */ void gtk_widget_set_vexpand_set (GtkWidget *widget, -- 2.30.2